f93f2f8e6dc049f780e414bc0a7429f75825821e,src/net/java/sip/communicator/impl/protocol/msn/ProtocolProviderServiceMsnImpl.java,MsnConnectionListener,exceptionCaught,#MsnMessenger#Throwable#,450
Before Change
logger.error("Error in Msn lib ", throwable);
if(isRegistered())
fireRegistrationStateChanged(
getRegistrationState(),
RegistrationState.UNREGISTERED,
RegistrationStateChangeEvent.REASON_NOT_SPECIFIED, null);
}
}
}
After Change
logger.error("Error in Msn lib ", throwable);
if(isRegistered())
{
unregister(false);
fireRegistrationStateChanged(
getRegistrationState(),
RegistrationState.UNREGISTERED,
RegistrationStateChangeEvent.REASON_NOT_SPECIFIED, null);
}
}
}